home *** CD-ROM | disk | FTP | other *** search
- ' Dialog communictions
-
- Global DialogCancel As Integer
- Global DialogParm As Variant
- Global DialogParm2 As Variant
-
- Global Const ID_NEW_PARTS = 1
- Global Const ID_NEW_CUST = 2
- Global Const ID_NEW_OBROWSE = 3
-
- Sub InventFileNew ()
- DbsCreate
- End Sub
-
- Sub Main ()
- ' Be sure we're in the project directory
- ChDir App.Path
- ChDrive App.Path
-
- ' Set the help file
- App.HelpFile = "invent.hlp"
-
- ' Initialize all modules
- InitDbs
- InitParts
- InitCust
- InitOrders
- InitOBrowse
-
- ' Start up the main form
- MDIMain.Show
- End Sub
-
- Sub SetStatus (txt As String)
- MDIMain.Status.Caption = " " + txt
- End Sub
-
-